* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #022269;
    --secondary-color: #2d5a3d;
	--third-color: #b28e3b;
    --accent-color: #FFD700;
    --white-bg-color: #f5f5f5;
    --black-color: #000;
    --font-family: 'Arial', sans-serif;
    --font-family-2: 'Montserrat';
} 

body {
    font-family: var( --font-family);
    line-height: 1.6;
    color: var(--black-color);
}

body, p, span, a, div, h1, h2, h3, h4, h5 {
    font-family: var( --font-family-2);
}

p {
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    background: var(--primary-color);
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
}

.logo a {
	display: flex;
    align-items: center;
	text-decoration: none;
    color: #fff;
}

.logo a img {
	width: 48px;
}

.logo i {
    margin-right: 8px;
    color: var(--third-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--third-color);
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: 14px;
    width: 220px;
}

.contact-info a {
    text-decoration: none;
    color: #fff;
}

.contact-info i {
    margin-right: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--white-bg-color) 0%, #e8e8e8 100%);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 600px;
    background-image: url('1.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: 50px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}

.hero-content {
    padding: 20px 20px 40px 20px;
    background-color: #ffffffb5;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    color: var(--black-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    background: var(--third-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 0 30px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 100;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
    font-weight: 700;
}

.cta-button:hover {
    background: #061b4a;
}


.decorative-circles {
    position: absolute;
    left: -30px;
    bottom: 30px;
}

.circle {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    z-index: 1;
    position: relative;
}

.welcome-image::after {
    content: "";
    position: absolute;
    top: -4%;
    right: -4%;
    background: var(--black-color);
    width: 100%;
    height: 100%;
    border-radius: 2px;
}

.welcome-content {
    padding-left: 40px;
}

.section-label {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
	position: relative
}

.welcome-content h2 {
    font-size: 36px;
    color: var(--black-color);
    margin-bottom: 20px;
    line-height: 1.3;
}


.welcome-content p {
    color: var(--black-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.welcome-content .feature-card p {
    margin-bottom: 0;
    font-size: 12px;
    color: var(--black-color)000bd;
    font-weight: 600;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--black-color);
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 12px;
}

.more-details {
    background: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 2px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    position: relative;
}

.feature-card {
    padding: 20px 14px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 2px;
}

.feature-card:last-child {
    border-right: none;
}

.feature-card i {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--third-color);
}

.feature-card p {
    font-size: 12px;
    opacity: 0.9;
}

/* Luxury Section */
.luxury-section {
    background-image: url('15.jfif');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    position: relative;
}

.luxury-content {
    z-index: 2;
	width: 90%;
    background: rgb(255 255 255 / 22%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 16px 16px 31px 16px;
}

.luxury-content .section-label {
	font-weight: 800;
}

.luxury-content .section-label::after {
    content: "";
    position: absolute;
    bottom: -22%;
    left: 0;
    height: 3px;
    width: 10%;
    background: var(--third-color);
}

section.luxury-section::after {
    content: "";
    height: 100%;
    width: 37%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.1;
    background-size: 100%;
    background-repeat: no-repeat;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.luxury-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}

.luxury-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.luxury-content p {
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.luxury-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    row-gap: 16px;
    column-gap: 18px;
    z-index: 2;
}

.luxury-feature:nth-child(1) {
    margin-left: -35%;
}

.luxury-feature {
    background: white;
    color: var(--black-color);
    padding: 30px 20px;
    border-radius: 2px;
    text-align: center;
    transition: all 0.1s linear;
}

.luxury-feature:nth-child(1), .luxury-feature:nth-child(2) {
    position: relative;
    width: 135%;
}

.luxury-feature i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.luxury-feature h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.luxury-feature p {
    font-size: 14px;
    color: var(--black-color);
    line-height: 1.5;
}

.luxury-feature:hover {
    background: var(--black-color);
    color: white;
    
}

.luxury-feature:hover i {
    color: var(--accent-color);
}
.luxury-feature:hover p {
    color: #ccc;
}

/* Floor Plan Section */
.floor-plan-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.floor-plan-container {
    margin: 0 auto;
    text-align: center;
}

.floor-plan-container h2 {
    font-size: 36px;
    color: var(--black-color);
    margin-bottom: 15px;
}

.floor-plan-container p {
    color: var(--black-color);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.floor-plan-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.floor-plan-details {
}

.detail-row {
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px 15px 30px;
    border-radius: 0 4px 4px 0;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.detail-row:not(:last-child) {
    margin-bottom: 10px;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: bold;
    color: var(--black-color);
}

.detail-value {
    color: var(--primary-color);
    font-weight: bold;
}

.available {
    color: var(--third-color);
}

.floor-plan-image {
    background: white;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.floor-plan-image img {
    border-radius: 5px 0 0 5px;
    width: 100%;
    height: 100%;
}

/* Amenities Section */
.amenities-section {
    padding: 80px 0;
    background: white;
}

.amenities-container {
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.amenities-image a {
    position: relative;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 5px;
    transition: all 0.3s linear;
}


.amenities-image a > div.amenity_slider_txt {
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: left;
    transition: all 0.3s linear;
}


.amenities-container h2 {
    font-size: 36px;
    color: var(--black-color);
    line-height: normal;
    margin: 25px 0;
}

.amenities-container > p {
    margin-top: 20px;
    margin-bottom: 50px;
}

.amenity_card_slider h2, .amenity_card_slider h3 {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.amenity_card_slider p {
    color: #fff;
    font-size: 12px;
}

.amenities-image {
    width: 100%;
    /* background: url('/placeholder.svg?height=400&width=800') center/cover; */
}

.amenities-image > button {
    position: absolute;
    bottom: 40%;
    font-size: 0;
    border: 0;
    background: transparent;
    width: 50px;
    height: 50px;
}

.amenities-image > button.slick-prev {
    left: 0;
    z-index: 2;
}

.amenities-image > button.slick-prev::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('back.png');
    background-size: 100%;
    opacity: 0.5;
}

.amenities-image > button.slick-next {
    right: 0;
    z-index: 2;
}

.amenities-image > button.slick-next::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('next.png');
    background-size: 100%;
    opacity: 0.5;
}

section.neighbourhood-section {
    padding: 80px 0;
    background: #FFF9EF;
}

section.neighbourhood-section > div {
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}


.neighbourhood-container .section-label {
    text-align: center;
}

.neighbourhood-container h2 {
    text-align: center;
    font-size: 36px;
    color: var(--black-color);
    line-height: normal;
    margin: 25px 0;
}


.neighbourhood-wrapper {
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    padding: 15px;
    border-radius: 5px;
    background-color: #fff;
}

.neighbourhood-image img {
    border-radius: 5px;
}

.neighbourhood-accordian-wrapper .accordians_map {
    margin-bottom: 10px;
    border-radius: 5px;
	border-bottom: 1px solid var(--third-color);
}

.neighbourhood-accordian-wrapper button.one_accordian {
    border: 0;
    color: var(--black-color)000;
    font-weight: 700;
    background: transparent;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 10px 10px;
    width: 100%;
    text-align: left;
    transition: all 0.3s linear;
    position: relative;
    background-color: var(--black-color)0000f;
    border-radius: 1px;
    cursor: pointer;
}

.neighbourhood-accordian-wrapper button.one_accordian::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 26%;
    right: 3%;
    background-position: center;
    background-image: url(down-chevron.png);
    background-size: contain;
    transition: all 0.2s linear;
}

.neighbourhood-accordian-wrapper .accordians_map.open button.one_accordian::after {
    transform: rotate(180deg);
}

.neighbourhood-accordian-wrapper .accordians_map p {
    padding: 0 12px;
    height: 0;
    opacity: 0;
    color: var(--black-color);
    font-size: 14px;
}


.neighbourhood-accordian-wrapper .accordians_map.open p {
    height: auto;
    opacity: 1;
    padding-top: 5px;
    /* box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px; */
    border-radius: 0 0 5px 5px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.neighbourhood-accordian-wrapper .accordians_map.open {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    transition: all 0.2s linear;
}

.visit-section {
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #1a1a1a;
}

.visit-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.visit-left {
  flex: 1;
}

.visit-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #444;
}

.visit-heading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.3;
}

.visit-agent {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.visit-logo {
  width: 100px;
  height: 100px;
  margin-right: 15px;
  border-radius: 50%;
}

.visit-agent-name {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.visit-agent-role {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.visit-description {
  margin-bottom: 30px;
  line-height: 1.6;
}

.visit-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visit-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.visit-icon {
  font-size: 28px;
  background: #004d32;
  color: #fff;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.visit-label {
  font-size: 14px;
  color: var(--black-color);
  margin: 0;
  font-weight: 600;
}

.visit-value {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.visit-right {
  flex: 1;
  background: #fff8ee;
  padding: 30px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.visit-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.visit-input,
.visit-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
}

.visit-textarea {
  min-height: 100px;
  resize: vertical;
}

.visit-error {
  font-size: 13px;
  color: #b33;
  background: #fff;
  padding: 8px;
  border: 1px solid #f2caca;
  margin: 0;
}

.visit-button {
  background: var(--black-color);
  color: #fff;
  padding: 14px;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.visit-button:hover {
  background: var(--third-color);
}

/* Footer Wrapper */
.custom-footer {
  background: var(--black-color);
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 60px 40px 20px;
}

/* Layout */
.custom-footer__container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* About Section */
.custom-footer__about p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 20px;
}

.custom-footer__socials a {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  background: #b89c5a;
  color: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.custom-footer__socials a:hover {
  background: #fff;
}

/* Links */
.custom-footer__links h4,
.custom-footer__find h4,
.custom-footer__contact h4 {
  margin-bottom: 15px;
  position: relative;
}
.custom-footer__links h4::after,
.custom-footer__find h4::after,
.custom-footer__contact h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #b89c5a;
  margin-top: 5px;
}

.custom-footer__links ul {
  list-style: none;
  padding: 0;
}
.custom-footer__links li {
  margin-bottom: 10px;
}
.custom-footer__links a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}
.custom-footer__links a:hover {
  color: #fff;
}

/* Find + Contact */
.custom-footer__find p,
.custom-footer__contact p {
  color: #ddd;
  margin-bottom: 10px;
}

.custom-footer__contact p a {
    display: flex;
    align-items: center;
    width: 70%;
}

.custom-footer__find i,
.custom-footer__contact i {
  color: #b89c5a;
  margin-right: 8px;
}

/* Bottom */
.custom-footer__bottom {
  border-top: 1px solid var(--black-color);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-footer__bottom p {
  font-size: 14px;
  color: #aaa;
}
.custom-footer__bottom a {
  font-size: 14px;
  color: #ddd;
  text-decoration: none;
}
.custom-footer__bottom a:hover {
  color: #fff;
}

.custom-footer__socials {
    display: flex;
    justify-content: flex-start;
}

.visit-page-section {
    margin-top: 90px;
}

.mobile_hamburger {
    display: none;
}

.mobile_navigation {
    display: none;
}

section#team h2 {
    color: #021f61;
    font-weight: 800;
}


/* social icon start */

    .fixed_social_icon_wrapper {
        position: fixed;
        bottom: 12%;
        right:0;
        z-index: 99;
        width: 15%;
    }

    .fixed_social_icon_wrapper > div:not(.popin_button){
        margin-bottom: 10px;
    }

    .fixed_social_icon_wrapper > div {
        display: grid;
        grid-template-columns: 20% 75%;
        gap: 2.5%;
        text-align: center;
        align-items:center;
        background-color: #33333399;
        border-radius: 5px 0 0 5px;
        padding-left: 5px;
        transition: all 0.3s ease-in-out;
        transform: translateX(76%);
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    }

    .fixed_social_icon_wrapper > div a {
        font-size: 12px;
        color: #fff;
        line-height: 52px;
    }


    .fixed_social_img {
        margin:0;
        background: #fff;
        height: 80%;
        display: grid;
        place-items: center;
        border-radius: 5px;
        color: var(--black-color);
    }

    .fixed_social_img > * {
        max-width: 35px;
    }

    a.whatsapp_wrapper img {
        width: 78%;
    }

    .fixed_social_img span.svg-wrapper {
        display: grid;
    }

    .development-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        position: relative;
    }


    .development-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .development-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 60px;
        gap: 60px;
    }

    .development-left {
        flex: 1;
    }

    .development-title {
        font-size: 36px;
        color: var(--black-color);
        line-height: 1.1;
        margin-bottom: 10px;
        letter-spacing: -0.02em;
    }

    .development-subtitle {
        font-size: 28px;
        font-weight: 700;
        color: #4a5568;
        line-height: 1.2;
    }

    .development-right {
        flex: 1.5;
    }

    .development-description {
        font-size: 18px;
        color: var(--black-color);
        font-weight: 400;
    }

    .development-projects {
        text-align: center;
    }

    .projects-main-title {
        font-weight: 800;
        background: linear-gradient(135deg, #e53e3e, #000000, #d69e2e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 28px;
        letter-spacing: -0.02em;
        font-size: 48px;
        color: var(--black-color);
    }

    .projects-showcase {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 30px;
    }

    .project-item {
        position: relative;
        height: 320px;
        border-radius: 5px;
        overflow: hidden;
        transition: all 0.4s ease;
        cursor: pointer;
    }

    .project-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    }

    .project-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .project-item:hover .project-img {
        transform: scale(1.1);
    }

    .project-hover {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        display: flex;
        align-items: flex-end;
        padding: 30px;
    }

    .project-item:hover .project-hover {
        opacity: 1;
    }

    .project-label {
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
    }

    @media screen and (min-width: 1220px) {
        .fixed_social_icon_wrapper > div:hover {
            transform: translateX(0);
        }
    }

    @media screen and (max-width: 1200px) {
        .fixed_social_icon_wrapper {
              width: 20%;
        }

        .projects-showcase {
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        }
    }
    @media screen and (max-width: 768px) {
        .fixed_social_icon_wrapper {
              width: 48%;
        }

        .fixed_social_icon_wrapper > div a {
            line-height: 46px;
        }

        .development-container {
            padding: 0 20px;
        }
        
        .development-header {
            flex-direction: column;
            text-align: center;
            gap: 30px;
        }
        
        .development-title {
            font-size: 2.5rem;
        }
        
        .development-subtitle {
            font-size: 2rem;
        }
        
        .projects-main-title {
            font-size: 3rem;
        }
        
        .projects-showcase {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .project-item {
            height: 280px;
        }
        
        .development-description {
            font-size: 1.1rem;
        }

        .development-left {
            width: 100%;
        }
    }
/* social icon end */

.amenities-image ul.slick-dots, .hero_section ul.slick-dots {
    display: flex;
    justify-content: center;
    padding: 20px 0 0 0;
    gap: 10px;
}

.amenities-image ul.slick-dots li, .hero_section ul.slick-dots li {
    list-style-type: none;
}

.amenities-image ul.slick-dots li, .hero_section ul.slick-dots li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #80808040;
    font-size: 0;
    transition: all 0.3s linear;
    cursor: pointer;
}

.amenities-image ul.slick-dots li.slick-active, .hero_section ul.slick-dots li.slick-active {
    background-color: var(--primary-color);
    border-radius: 20px;
    width: 50px;
    
}

.amenities-image ul.slick-dots li button, .hero_section ul.slick-dots li button {
    font-size: 0;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.custom-footer__contact {
    padding-right: 34px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-container {
        padding: 0 12px;
    }

    .header {
        padding: 10px 0;
    }

    .mobile_hamburger {
        width: 10%;
        height: 40px;
        display: grid;
        place-items: center;
        padding: 2px;
        cursor: pointer;
    }

    .logo {
        font-size: 13px;
        width: 78%;
        justify-content: flex-start;
        padding-left: 10px;
    }

    .mobile_navigation.active_mobile_menu {
        transform: translateX(0);
    }

    .contact-info {
        font-size: 10px;
        width: 30%;
    }

    .mobile_hamburger img {
        width: 100%;
    }

    .hero {
        padding: 0px 0 50px;
        background-size: cover;
    }

    .welcome-section {
        padding: 50px 0;
    }

    .amenities-image a > div.amenity_slider_txt {
        padding: 15px;
    }

    .amenities-image a > div.amenity_slider_txt h4 {
        margin-bottom: 4px;
    }

    .amenity_card_slider p {
        font-size: 10px;
    }

    .luxury-section {
        padding: 50px 0;
    }

    .floor-plan-section, .amenities-section, section.neighbourhood-section {
        padding: 50px 0;
    }

    .visit-section {
        padding: 40px 20px;
    }

    .visit-page-section {
        margin-top: 20px;
    }

    .visit-page-section .visit-heading {
        font-size: 28px;
    }

    .mobile_navigation {
        position: fixed;
        top: 60px;
        background-color: var(--primary-color);
        width: 100%;
        height: 100%;
        left: 0;
        padding: 10px;
        z-index: 999;
        transform: translateX(-100%);
        transition: all 0.3s linear;
        display: block;
    }

    .mobile_navigation ul.mob-nav-menu li {
        list-style-type: none;
        padding: 10px;
        position: relative;
    }

    .mobile_navigation ul.mob-nav-menu li::after {
        content: "";
        height: 0.5px;
        width: 90%;
        background-color: #ffffff2e;
        bottom: 0;
        left: 4%;
        position: absolute;
        border-radius: 5px;
    }

    .mobile_navigation ul.mob-nav-menu li a{
        font-size: 16px;
        padding: 10px;
        font-weight: 600;
        display: block;
        color: #fff;
        text-decoration: none;
    }

    .cta-button {
        font-weight: 700;
    }
	
	.hero-container {
		margin-top: 32px;
	}
	
	.luxury-content {
		width: 100%;
	}

    .hero-container,
    .welcome-container,
    .luxury-container,
    .floor-plan-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .floor-plan-container {
        padding: 15px;
    }

    .detail-row {
        border-radius: 2px;
    }
    
    .floor-plan-image {
        border-radius: 2px;
    }

    .neighbourhood-accordian-wrapper .accordians_map {
        border-bottom: 1px solid #333333b3;
    }

    .neighbourhood-accordian-wrapper {
        padding: 10px 0;
    }

    .neighbourhood-container h2 {
        margin: 10px 0 25px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .luxury-features {
        grid-template-columns: 1fr 1fr;
    }

    .luxury-feature {
        padding: 18px;
    }

    .neighbourhood-wrapper {
        grid-template-columns: 1fr;
    }

    .neighbourhood-image img {
        width: 100%;
    }

    .welcome-content {
        padding-left: 0;
    }

    .visit-container {
        flex-direction: column;
    }

    .custom-footer__container {
        display: block;
    }

    .custom-footer__container > div {
        margin-top: 28px;
    }

    .custom-footer {
        padding: 20px;
    }

    .custom-footer__bottom p {
        font-size: 8px;
    }

    .custom-footer__bottom a {
        font-size: 12px;
    }

    .luxury-feature:nth-child(1), .luxury-feature:nth-child(2) {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .welcome-content h2,
    .luxury-content h2,
    .floor-plan-container h2,
    .amenities-container h2 {
        font-size: 28px;
    }

    .development-section {
        padding: 60px 0;
    }
    
    .development-title {
        font-size: 28px;
        text-align: center;
        width: 100%;
    }
    
    .development-subtitle {
        font-size: 1.6rem;
    }
    
    .projects-main-title {
        font-size: 2.5rem;
    }

}